home *** CD-ROM | disk | FTP | other *** search
/ Max Calendar 2002 / Max Calendar 2002.iso / pc / Data_2 / intro_2.dxr / 00013_DRAG IMMAGINE SU TUTTE LE COORDINATE.ls < prev    next >
Encoding:
Text File  |  2001-10-17  |  459 b   |  18 lines

  1. on mouseDown
  2.   global gMinZH, gMaxZH, gMinZV, gMaxZV
  3.   DeltaH = the mouseH - the locH of sprite 117
  4.   DeltaV = the mouseV - the locV of sprite 117
  5.   repeat while the stillDown
  6.     cursor(SettaCursore(3))
  7.     H = the mouseH - DeltaH
  8.     V = the mouseV - DeltaV
  9.     H = max(H, gMinZH)
  10.     H = min(H, gMaxZH)
  11.     V = max(V, gMinZV)
  12.     V = min(V, gMaxZV)
  13.     set the locH of sprite 117 to H
  14.     set the locV of sprite 117 to V
  15.     updateStage()
  16.   end repeat
  17. end
  18.